Book Contents

Example: Format expressions

The following expression:

If (tag1 > tag2) Then 0

Else If (tag1 > tag 3) Then 2

Else 4

Could be condensed to the following:

If (tag1 > tag2) Then 0 Else If (tag1 > tag3) Then 2 Else 4

See also

About expressions

Format expressions